-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
R Package Prep #4
base: main
Are you sure you want to change the base?
Conversation
gadenbuie
commented
Aug 28, 2024
- Adds GitHub Actions to check the R package
- Fills out DESCRIPTION
- Small clean up of documentation, location of imports, etc. to follow usethis conventions
- Generally gets the package ready for CRAN submission (if desired)
* Add Description * use_tidy_description()
* usethis::use_import_from("package", "function")
on: | ||
push: | ||
branches: [main, master] | ||
paths: ['r-package/**'] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We might want to do something similar in .github/workflows/release.yml to avoid running Python checks unless the python-package files change.
Although there it's slightly more complicated because that workflow relies on tag pushes for publishing. (Otherwise I would have done that now.)